From: Ewan Mellor Date: Fri, 23 Mar 2007 11:32:32 +0000 (+0000) Subject: Since CPP is being used with CFLAGS, it should be in lock-step with CC, X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15277^2~21 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=96e8ce66553f9bb2fa023924ef9d8dc084b28553;p=xen.git Since CPP is being used with CFLAGS, it should be in lock-step with CC, to avoid having to specify both CC and CPP for the build. Signed-off-by: Jan Beulich --- diff --git a/config/StdGNU.mk b/config/StdGNU.mk index 8c947f4832..fd7bc53a56 100644 --- a/config/StdGNU.mk +++ b/config/StdGNU.mk @@ -1,7 +1,7 @@ AS = $(CROSS_COMPILE)as LD = $(CROSS_COMPILE)ld CC = $(CROSS_COMPILE)gcc -CPP = $(CROSS_COMPILE)gcc -E +CPP = $(CC) -E AR = $(CROSS_COMPILE)ar RANLIB = $(CROSS_COMPILE)ranlib NM = $(CROSS_COMPILE)nm